home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
lang
/
sofa.lha
/
sofa
/
smalleiffel
/
misc
/
benchmarks
/
gc
/
cnolfo
/
point.e
< prev
next >
Wrap
Text File
|
2000-03-25
|
129b
|
16 lines
class POINT
creation make
feature
x, y: DOUBLE;
make(vx, vy: DOUBLE) is
do
x := vx;
y := vy;
end;
end